'I am a text controller for CodeView in EquationView. I am a subclass of TextController, and the difference between me and TextController is that I have a direct access to startBlock and stopBlock and can change set the initialText using a method : textHasChanged.'!
!MyTextController methodsFor: 'accessing'!
startBlock
^startBlock.!
stopBlock
^stopBlock.!
textHasChanged
initialText _ self text.
^false! !
Object subclass: #GraphListMenu
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'SDS-Equations'!
GraphListMenu comment:
'This is a PopUpMenu for Graphs. It is not used in our current version anymore'!